* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  border-radius: 15px;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.title {
  font-size: clamp(1em, 2vw, 2vw);
  flex-wrap: nowrap;
}

.left {
  margin-left: 35px;
  width: 35%;
  padding: 20px;
  text-align: center;
}

.left h2 {
  margin-bottom: 15px;
  font-weight: 600;
}

.logo {
  width: 70px;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
}

.input-group input:disabled + label{
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}

.input-group input:enabled + label {
  opacity: 1;
  transition: all 0.3s ease;
}

.input-group input::placeholder {
  color: #aaa;
  opacity: 1;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 14px;
  color: gray;
  transition: all 0.3s;
  pointer-events: none;
}

.input-group input:focus,
.input-group input:valid {
  border-color: transparent;
  box-shadow: 0 0 5px 0;
}

.input-group input:focus:enabled + label,
.input-group input:not(:placeholder-shown):enabled + label {
  top: -18px;
  left: 1px;
  font-size: 14px;
  color: #046a38;
  background: white;
  padding: 0 5px;
  opacity: 1;
  transform: translateY(0);
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.login-link {
  margin-top: 15px;
  font-size: 14px;
  color: gray;
}

.login-link a {
  color: #046a38;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.signup-text a:hover {
  color: #034f28;
}

.btn {
  background-color: #046a38;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn:hover {
  background-color: #034f28;
}

.social-login {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn i {
  font-size: 16px;
}

.fb-btn {
  background-color: #3b5998;
  color: white;
}

.google-btn {
  background-color: #db4a39;
  color: white;
}

.social-btn:hover {
  opacity: 0.8;
}

.right {
  width: 60%;
  text-align: center;
}

.right img {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}